ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / FlexGridBase<T> Class / OnClientCopying Property






In This Topic
    OnClientCopying Property
    In This Topic
    Occurs when the user is copying the selection content to the clipboard by pressing one of the clipboard shortcut keys (see the autoClipboard property).
    Syntax
    'Declaration
     
    
    Public Overridable Property OnClientCopying As System.String
    'Usage
     
    
    Dim instance As FlexGridBase(Of T)
    Dim value As System.String
     
    instance.OnClientCopying = value
     
    value = instance.OnClientCopying
    public virtual System.string OnClientCopying {get; set;}
    public read-write property OnClientCopying: System.String; virtual; 
    public function get,set OnClientCopying : System.String
    public: __property virtual System.string* get_OnClientCopying();
    public: __property virtual void set_OnClientCopying( 
       System.string* value
    );
    public:
    virtual property System.String^ OnClientCopying {
       System.String^ get();
       void set (    System.String^ value);
    }
    Remarks
    The event handler may cancel the copy operation.
    See Also